home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / trial / demon / TURNPIKE.1 / CLASSES.ZIP / JAVA / UTIL / HashtableEntry.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-04-14  |  568 b   |  18 lines

  1. package java.util;
  2.  
  3. class HashtableEntry {
  4.    int hash;
  5.    Object key;
  6.    Object value;
  7.    HashtableEntry next;
  8.  
  9.    protected Object clone() {
  10.       HashtableEntry var1 = new HashtableEntry();
  11.       var1.hash = this.hash;
  12.       var1.key = this.key;
  13.       var1.value = this.value;
  14.       var1.next = this.next != null ? (HashtableEntry)this.next.clone() : null;
  15.       return var1;
  16.    }
  17. }
  18.